home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / pctj8408.arc / M_WP.MSC < prev    next >
Text File  |  1986-09-14  |  4KB  |  154 lines

  1. ;*****************************************
  2. ;**                                     **
  3. ;**       Mouse Systems PC Mouse        **
  4. ;**     Designer Pop-up Menus v3.0      **
  5. ;**          Word Perfect v3.0          **
  6. ;**                                     **
  7. ;**          File: M_WP.MSC             **
  8. ;**          Auth: J. Anderson          **
  9. ;**          Edit: 05/21/84             **
  10. ;**                                     **
  11. ;*****************************************
  12.  
  13. Comment  ("Configured for Word Perfect (version 3.0)")  
  14.  
  15. ;
  16. ;    Parameters
  17. ;
  18. Sensitivity    (13, 8)
  19. Hysteresis      ( 1, 1)
  20. ReverseVideo    (Yes)
  21. FixedMenu       (No)
  22. EnableBeep      (No)
  23.  
  24. ;
  25. ;    Cursor Definitions
  26. ;
  27.  
  28. Arrowkeys:  Cursor
  29. (
  30.     Left    ([Left])
  31.     Right    ([Right])
  32.     Up    ([Up])
  33.     Down    ([Down])
  34. )
  35.  
  36. ;
  37. ;    Button Definitions
  38. ;
  39. ; Initial Settings for Left, Middle, and Right Buttons
  40. LBO:    Button    (Menu (Main))
  41. MB:    Button    (Menu (Motion))    
  42. RB:    Button    (Menu (FileCommands))
  43.  
  44. ; Redefinitions for Left Button
  45. LBFD:    Button    (Menu (FormatDoc))
  46. LBFT:    Button    (Menu (FormatText))
  47. LBEC:    Button    (Menu (EditCommands))
  48.  
  49. ;
  50. ;    Menu Definitions
  51. ;
  52. Main: Menu
  53. (
  54.  Title ("Edit")
  55.  Item ("Format Document", Menu (FormatDoc), Button (LBFD))
  56.  Item ("Format Text", Menu (FormatText), Button (LBFT))
  57.  Item ("Edit Commands", Menu (EditMenu), Button (LBEC))
  58.  Item  ("Help",    Menu (Help))
  59. )
  60.  
  61. FormatDoc: Menu
  62. (
  63.   Title    ("Format Document")
  64.   Item    ("Set Page Format",  Keys ([s-F7]))
  65.   Item    ("Set Margins",         Keys ([s-F6] "3"))
  66.   Item    ("Set Spacing",         Keys ([s-F6] "4"))
  67.   Item    ("Go to Main Menu",  Menu (Main), Button (LBO))
  68. )
  69.  
  70. FormatText: Menu
  71. (
  72.   Title    ("Format Text")
  73.   Item    ("Bold Text",         Keys ([F6]))
  74.   Item    ("Underline",         Keys ([F8]))
  75.   Item    ("Block Start/End",  Keys ([a-0]))
  76.   Item    ("Center Text",         Keys ([F5]))
  77.   Item    ("Flush Right",         Keys ([F7]))
  78.   Item    ("Indent",         Keys ([F4]))
  79.   Item    ("Page Break",         Keys ([c-Enter]))
  80.   Item    ("Reveal Function",  Keys ([s-F2]))
  81.   Item    ("Rewrite Screen",   Keys ([s-F1]))
  82.   Item    ("Go to Main Menu",  Menu (Main), Button (LBO))
  83. )
  84.  
  85. EditCommands: Menu
  86. (
  87.   Title    ("Edit Commands")
  88.   Item    ("Erase Word",          Keys ([Home][Backspace]))
  89.   Item    ("Erase Rest of Line",Keys ([c-End]))
  90.   Item    ("Erase Rest of Page",Keys ([c-PgDn]))
  91.   Item    ("Forward Search",    Keys ([F2]))
  92.   Item    ("Reverse Search",    Keys ([F1]))
  93.   Item    ("Find and Replace",  Keys ([a-F2]))
  94.   Item    ("Move Text",          Keys ([a-9]))
  95.   Item    ("Go to Main Menu",   Menu (Main),Button (LBO))
  96. )
  97.  
  98.  
  99. Help: Menu
  100. (
  101.   Title    ("Help")
  102.   Item    ("Bold",          Keys ([s-F3] [F6]))
  103.   Item    ("Center",          Keys ([s-F3] [F5]))
  104.   Item    ("Flush Right",          Keys ([s-F3] [F7]))
  105.   Item    ("Forward Search",    Keys ([s-F3] [F2]))
  106.   Item    ("Indent",          Keys ([s-F3] [F4]))
  107.   Item    ("Move Text",          Keys ([s-F3] [a-9]))
  108.   Item    ("Print Modes",          Keys ([s-F3] [a-4]))
  109.   Item    ("Block Start/End",   Keys ([s-F3] [a-0]))
  110.   Item    ("Retrieve Text",     Keys ([s-F3] [a-7]))
  111.   Item    ("Reverse Search",    Keys ([s-F3] [F1]))
  112.   Item    ("Save Text",          Keys ([s-F3] [a-8]))
  113.   Item    ("Find and Replace",  Keys ([s-F3] [a-F2]))
  114.   Item    ("Set Margins",          Keys ([s-F3] [s-F6] "3"))
  115.   Item    ("Set Spacing",          Keys ([s-F3] [s-F6] "4"))
  116.   Item    ("Set Tabs",          Keys ([s-F3] [s-F6] "1"))
  117.   Item    ("Set Page Format",   Keys ([s-F3] [s-F7]))
  118.   Item    ("Subscript",          Keys ([s-F3] [a-2]))
  119.   Item    ("Superscript",          Keys ([s-F3] [c-2]))
  120.   Item    ("Underline",          Keys ([s-F3] [F8]))
  121. )
  122.  
  123. Motion: Menu
  124. (
  125.   Title    ("Motion Commands")
  126.   Item    ("Top of Document",   Keys ([Home] [Home] [Up]))
  127.   Item    ("End of Document",   Keys ([Home] [Home] [Down]))
  128.   Item    ("Next Page",          Keys ([PgDn]))
  129.   Item    ("Previous Page",     Keys ([PgUp]))
  130.   Item    ("End of Line",          Keys ([Home] [Right]))
  131.   Item    ("Start of Line",     Keys ([Home] [Left]))
  132. )
  133.  
  134. FileCommands: Menu
  135. (
  136.   Title    ("File Commands")
  137.   Item    ("Retrieve Text",     Keys ([a-7]))
  138.   Item    ("Save Text",          Keys ([a-8]))
  139.   Item    ("Print Text",          Keys ([c-PrtSc]))
  140.   Item    ("System Commands",   Keys ([a-3]))
  141.   Item    ("Exit Word Perfect", Keys ([a-=]))
  142. )
  143.  
  144. ;
  145. ;    Mouse Definition
  146. ;
  147. Mouse
  148. (
  149.      Left    (LBO)
  150.      Middle    (MB)
  151.     Right    (RB)
  152.     Cursor    (Arrowkeys)
  153. )
  154.